home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / INSPECTOR.XPI / bin / components / inspector-cmdline.js next >
Encoding:
Text File  |  2006-09-10  |  6.4 KB  |  177 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is DOM Inspector.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Christopher A. Aillon <christopher@aillon.com>.
  18.  * Portions created by the Initial Developer are Copyright (C) 2003
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Christopher A. Aillon <christopher@aillon.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. // NOTE: this file implements both the seamonkey nsICmdLineHandler and
  39. // the toolkit nsICommandLineHandler, using runtime detection.
  40.  
  41. const INSPECTOR_CMDLINE_CONTRACTID = "@mozilla.org/commandlinehandler/general-startup;1?type=inspector";
  42. const INSPECTOR_CMDLINE_CLSID      = Components.ID('{38293526-6b13-4d4f-a075-71939435b408}');
  43. const CATMAN_CONTRACTID            = "@mozilla.org/categorymanager;1";
  44. const nsISupports                  = Components.interfaces.nsISupports;
  45.  
  46. const nsICategoryManager           = Components.interfaces.nsICategoryManager;
  47. const nsICmdLineHandler            = Components.interfaces.nsICmdLineHandler;
  48. const nsICommandLine               = Components.interfaces.nsICommandLine;
  49. const nsICommandLineHandler        = Components.interfaces.nsICommandLineHandler;
  50. const nsIComponentRegistrar        = Components.interfaces.nsIComponentRegistrar;
  51. const nsISupportsString            = Components.interfaces.nsISupportsString;
  52. const nsIWindowWatcher             = Components.interfaces.nsIWindowWatcher;
  53.  
  54. function InspectorCmdLineHandler() {}
  55. InspectorCmdLineHandler.prototype =
  56. {
  57.   /* nsISupports */
  58.   QueryInterface : function handler_QI(iid) {
  59.     if (iid.equals(nsISupports))
  60.       return this;
  61.  
  62.     if (nsICmdLineHandler && iid.equals(nsICmdLineHandler))
  63.       return this;
  64.  
  65.     if (nsICommandLineHandler && iid.equals(nsICommandLineHandler))
  66.       return this;
  67.  
  68.     throw Components.results.NS_ERROR_NO_INTERFACE;
  69.   },
  70.  
  71.   /* nsICmdLineHandler */
  72.   commandLineArgument : "-inspector",
  73.   prefNameForStartup : "general.startup.inspector",
  74.   chromeUrlForTask : "chrome://inspector/content/inspector.xul",
  75.   helpText : "Start with the DOM Inspector.",
  76.   handlesArgs : true,
  77.   defaultArgs : "",
  78.   openWindowWithArgs : true,
  79.  
  80.   /* nsICommandLineHandler */
  81.   handle : function handler_handle(cmdLine) {
  82.     var args;
  83.     try {
  84.       var uristr = cmdLine.handleFlagWithParam("inspect", false);
  85.       if (uristr) {
  86.         var uri = cmdLine.resolveURI(uristr);
  87.         args = Components.classes["@mozilla.org/supports-string;1"]
  88.                          .createInstance(nsISupportsString);
  89.         args.data = uri.spec;
  90.       }
  91.     }
  92.     catch (e) {
  93.     }
  94.  
  95.     if (args || cmdLine.handleFlag("inspector", false)) {
  96.       var wwatch = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  97.                              .getService(nsIWindowWatcher);
  98.       wwatch.openWindow(null, "chrome://inspector/content/", "_blank",
  99.                         "chrome,dialog=no,all", args);
  100.     }
  101.   },
  102.  
  103.   helpInfo : "  -inspect <url>       Open the URL in the DOM inspector.\n  -inspector           Open the DOM inspector.\n"
  104. };
  105.  
  106.  
  107. var InspectorCmdLineFactory =
  108. {
  109.   createInstance : function(outer, iid)
  110.   {
  111.     if (outer != null) {
  112.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  113.     }
  114.  
  115.     return new InspectorCmdLineHandler().QueryInterface(iid);
  116.   }
  117. };
  118.  
  119.  
  120. var InspectorCmdLineModule =
  121. {
  122.   registerSelf : function(compMgr, fileSpec, location, type)
  123.   {
  124.     compMgr = compMgr.QueryInterface(nsIComponentRegistrar);
  125.  
  126.     compMgr.registerFactoryLocation(INSPECTOR_CMDLINE_CLSID,
  127.                                     "DOM Inspector CommandLine Service",
  128.                                     INSPECTOR_CMDLINE_CONTRACTID,
  129.                                     fileSpec,
  130.                                     location,
  131.                                     type);
  132.  
  133.     var catman = Components.classes[CATMAN_CONTRACTID].getService(nsICategoryManager);
  134.     catman.addCategoryEntry("command-line-argument-handlers",
  135.                             "inspector command line handler",
  136.                             INSPECTOR_CMDLINE_CONTRACTID, true, true);
  137.     catman.addCategoryEntry("command-line-handler",
  138.                             "m-inspector",
  139.                             INSPECTOR_CMDLINE_CONTRACTID, true, true);
  140.   },
  141.  
  142.   unregisterSelf : function(compMgr, fileSpec, location)
  143.   {
  144.     compMgr = compMgr.QueryInterface(nsIComponentRegistrar);
  145.  
  146.     compMgr.unregisterFactoryLocation(INSPECTOR_CMDLINE_CLSID, fileSpec);
  147.     catman = Components.classes[CATMAN_CONTRACTID].getService(nsICategoryManager);
  148.     catman.deleteCategoryEntry("command-line-argument-handlers",
  149.                                "inspector command line handler", true);
  150.     catman.deleteCategoryEntry("command-line-handler",
  151.                                "m-inspector", true);
  152.   },
  153.  
  154.   getClassObject : function(compMgr, cid, iid)
  155.   {
  156.     if (cid.equals(INSPECTOR_CMDLINE_CLSID)) {
  157.       return InspectorCmdLineFactory;
  158.     }
  159.  
  160.     if (!iid.equals(Components.interfaces.nsIFactory)) {
  161.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  162.     }
  163.  
  164.     throw Components.results.NS_ERROR_NO_INTERFACE;
  165.   },
  166.  
  167.   canUnload : function(compMgr)
  168.   {
  169.     return true;
  170.   }
  171. };
  172.  
  173.  
  174. function NSGetModule(compMgr, fileSpec) {
  175.   return InspectorCmdLineModule;
  176. }
  177.